Missed Skip Rotten Green Test ^^^^^ **Definition:** * Test methods contain guards to stop their execution early under certain conditions. **Code Example:** .. code-block:: java @Test public void testNormalizedKeysGreatSmallAscDescHalfLenght(){ TypeComparator comparator = getComparator(true); if (not(comparator.supportsNormalizedKey())){ return; } testNormalizedKeysGreatSmall(true, comparator,true); testNormalizedKeysGreatSmall(false, comparator,true); } **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `Rotten green tests in Java, Pharo and Python `_ :octicon:`file-code;1em` :octicon:`comment-discussion;1em` :octicon:`sync;1em`